aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/types/grammar.d.ts
blob: c7848e33f5e9d9c6e8929e8e054ecb76f0705611 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
 * Copyright (C) 2021-2024 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: MIT
 */

declare module '*.grammar' {
  import type { LRParser } from '@lezer/lr';

  export const parser: LRParser;
}

declare module '*.terms' {
  export const QualifiedNameSeparator: number;
}