6 lines
224 B
TypeScript
6 lines
224 B
TypeScript
/**
|
|
* Checks if the given value is an expression. An expression is a string that
|
|
* starts with '='.
|
|
*/
|
|
export declare const isExpression: (expr: unknown) => expr is string;
|
|
//# sourceMappingURL=expression-helpers.d.ts.map
|