aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/types/grammar.d.ts
blob: e7a7eebf72c237e8e01178a413229383005e8727 (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 OR EPL-2.0
 */

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

  export const parser: LRParser;
}