Files
starface-outlook-sync-addin/node_modules/@jsonjoy.com/codegen/lib/util/JsExpression.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

12 lines
337 B
TypeScript

export declare class JsExpression {
private expression;
private _wasUsed;
private _expression?;
private _listeners;
constructor(expression: () => string);
get wasUsed(): boolean;
use(): string;
chain(use: (expr: string) => string): JsExpression;
addListener(listener: (expr: string) => void): void;
}