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

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

  export const parser: LRParser;
}