UNPKG

@primno/core

Version:

Front-end framework for Model-Driven Apps of Power Apps and Dynamics 365.

18 lines (17 loc) 290 B
interface ValueBind { token: any; type: "value"; use: any; } interface ClassBind { token: any; type: "class"; use: any; } interface FactoryBind { token: any; type: "factory"; use: any; } export type Bind = ValueBind | ClassBind | FactoryBind; export {};