Files
DefinitelyTyped/f1/index.d.ts
2016-11-29 17:03:26 -05:00

37 lines
750 B
TypeScript

// Type definitions for f1 8.0
// Project: https://github.com/jam3/f1
// Definitions by: Neo <https://github.com/neolwc>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
interface F1Options {
onState: void;
onUpdate: void;
name: string;
targets: any;
states: any;
transitions: any[];
parsers: any;
}
interface F1 extends NodeJS.EventEmitter {
targets(targets: any): F1;
states(states: any): F1;
transitions(transitions: any[]): F1;
parsers(parser: any): F1;
init(initState: string): F1;
destroy(): void;
apply(): void;
go(state: string, callback?: void): F1;
set(state: string): F1;
step(deltaTime: number): F1;
update(): F1;
}
declare function f1(settings?: F1Options): F1;