mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
455 B
TypeScript
16 lines
455 B
TypeScript
// Type definitions for ityped 0.0
|
|
// Project: https://github.com/luisvinicius167/ityped
|
|
// Definitions by: Daniel Rosenwasser <https://github.com/DanielRosenwasser>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export interface Configuration {
|
|
strings?: string[];
|
|
typeSpeed?: number;
|
|
pause?: number;
|
|
loop?: boolean;
|
|
}
|
|
|
|
export function init(element: string, config: Configuration): void;
|
|
|
|
export as namespace ityped;
|