-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.js
More file actions
33 lines (31 loc) · 943 Bytes
/
index.js
File metadata and controls
33 lines (31 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { typeOut } from './lib/simple/type.js';
import { wave } from './lib/effects/wave.js';
import { reverseType } from './lib/simple/reverseType.js';
import { progressBar } from './lib/simple/progressBar.js';
import { colorPulse } from './lib/simple/pulse.js';
import { playFrames } from './lib/core/framePlayer.js';
import { glitch } from './lib/effects/glitch.js';
import { rainbow } from './lib/effects/rainbow.js';
import { scramble } from './lib/effects/scramble.js';
import { spinner } from './lib/simple/spinner.js';
import { asciiArt } from './lib/effects/asciiArt.js';
import {flash} from './lib/simple/flash.js';
import {typeDelete} from "./lib/simple/typeDelete.js";
import { dots } from './lib/loader/dots.js';
export const flossum = {
typeOut,
spinner,
reverseType,
progressBar,
wave,
glitch,
scramble,
rainbow,
colorPulse,
playFrames,
asciiArt,
flash,
typeDelete,
dots
};
export default flossum;