mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
8 lines
246 B
TypeScript
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[]
|
|
|