first commit
This commit is contained in:
20
node_modules/@n8n_io/riot-tmpl/index.d.ts
generated
vendored
Normal file
20
node_modules/@n8n_io/riot-tmpl/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
declare module "@n8n_io/riot-tmpl" {
|
||||
interface BracketSettings {
|
||||
brackets: string;
|
||||
}
|
||||
|
||||
interface Brackets {
|
||||
set(token: string): void;
|
||||
settings: BracketSettings;
|
||||
}
|
||||
|
||||
type ReturnValue = string | null | (() => unknown);
|
||||
interface Tmpl {
|
||||
errorHandler?(error: Error): void;
|
||||
getStr(expr: string): string;
|
||||
(value: string, data: unknown): ReturnValue;
|
||||
}
|
||||
|
||||
let brackets: Brackets;
|
||||
let tmpl: Tmpl;
|
||||
}
|
||||
Reference in New Issue
Block a user