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

6 lines
278 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>;
2019-11-06 06:35:15 +00:00
export const DATA_BIND_REGEX = /{{(\s*[\w\.\[\]\d]+\s*)}}/g;
export const DATA_PATH_REGEX = /[\w\.\[\]\d]+/;