unambiguous.d.ts 167 B

1234567
  1. import type { AST } from 'eslint';
  2. declare function isModule(ast: AST.Program): boolean;
  3. declare function test(content: string): boolean;
  4. export { isModule, test }