| 1 | declare module 'pug-lexer' { |
| 2 | namespace lex { |
| 3 | export interface Loc { |
| 4 | start: { line: number; column: number }; |
| 5 | end: { line: number; column: number }; |
| 6 | } |
| 7 | |
| 8 | export type LexTokenType = |
| 9 | | ':' |
nothing calls this directly
no outgoing calls
no test coverage detected