PromucFlow_constructor/app/client/src/constants/BindingsConstants.ts

7 lines
315 B
TypeScript
Raw Normal View History

/* eslint-disable no-useless-escape */
// TODO (hetu): Remove useless escapes and re-enable the above lint rule
2019-11-01 07:11:32 +00:00
export type NamePathBindingMap = Record<string, string>;
2020-01-17 09:28:26 +00:00
export const DATA_BIND_REGEX = /{{([\s\S]*?)}}/g;
2020-01-02 13:36:35 +00:00
export const AUTOCOMPLETE_MATCH_REGEX = /{{\s*.*?\s*}}/g;
2019-11-08 11:02:00 +00:00
/* eslint-enable no-useless-escape */