WIP - add extractor, generate snippet_data
This commit is contained in:
8
node_modules/xstate/es/scxml.d.ts
generated
vendored
Normal file
8
node_modules/xstate/es/scxml.d.ts
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
import { EventObject } from './types';
|
||||
import { StateNode } from './index';
|
||||
export interface ScxmlToMachineOptions {
|
||||
evalCond: (expr: string, extState?: object) => // tslint:disable-next-line:ban-types
|
||||
((extState: any, event: EventObject) => boolean) | Function;
|
||||
delimiter?: string;
|
||||
}
|
||||
export declare function toMachine(xml: string, options: ScxmlToMachineOptions): StateNode;
|
||||
Reference in New Issue
Block a user