trilium/src/public/app/services/attribute_parser.d.ts
2024-06-09 12:16:09 +02:00

8 lines
246 B
TypeScript

declare module 'attribute_parser';
export function lex(str: string): any[]
export function parse(tokens: any[], str?: string, allowEmptyRelations?: boolean): any[]
export function lexAndParse(str: string, allowEmptyRelations?: boolean): any[]