mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
19 lines
247 B
TypeScript
19 lines
247 B
TypeScript
import { init } from "ityped";
|
|
|
|
const config = {
|
|
strings: [
|
|
"Strings!",
|
|
],
|
|
typeSpeed: 120,
|
|
pause: 500,
|
|
loop: true
|
|
};
|
|
|
|
init("#selector", config);
|
|
|
|
init("#anotherSelector", {
|
|
loop: false
|
|
});
|
|
|
|
init("#anotherOne", {});
|