js-awe
Version:
Awesome js utils including - plan: An Asynchronous control flow with a functional taste - Chrono: record and visualize timelines in the console
14 lines • 397 B
TypeScript
export function Timeline(): {
loadParams: (paramId: any) => (paramTitle: any) => {
id: any;
load: (columnData: any) => void;
getSize: () => any;
heading: {
nextValue: () => Generator<any, void, unknown>;
};
row: {
nextValue: () => Generator<any, void, unknown>;
};
};
};
//# sourceMappingURL=timeline.d.ts.map