asciify-engine 1.0.79 → 1.0.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +275 -3
- package/dist/index.d.ts +275 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
type ColorMode = 'grayscale' | 'fullcolor' | 'matrix' | 'accent';
|
|
2
2
|
type RenderMode = 'ascii' | 'dots';
|
|
3
3
|
type AnimationStyle = 'none' | 'wave' | 'pulse' | 'rain' | 'breathe' | 'sparkle' | 'glitch' | 'spiral' | 'typewriter' | 'scatter' | 'waveField' | 'ripple' | 'melt' | 'orbit' | 'cellular';
|
|
4
|
-
type ArtStyle = 'classic' | 'particles' | 'letters' | 'claudeCode' | 'art' | 'terminal' | 'box' | 'lines' | 'braille' | 'katakana' | 'musical' | 'emoji' | 'circles' | 'shadows' | 'starfield' | 'geometric' | 'pipes' | 'waves' | 'shards' | 'smoke';
|
|
4
|
+
type ArtStyle = 'classic' | 'particles' | 'letters' | 'claudeCode' | 'art' | 'terminal' | 'box' | 'lines' | 'braille' | 'katakana' | 'musical' | 'emoji' | 'circles' | 'shadows' | 'starfield' | 'geometric' | 'pipes' | 'waves' | 'shards' | 'smoke' | 'ascii' | 'interface' | 'prompt' | 'data' | 'humanist' | 'mesh';
|
|
5
5
|
type HoverEffect = 'spotlight' | 'magnify' | 'repel' | 'glow' | 'colorShift' | 'attract' | 'shatter' | 'trail' | 'glitchText';
|
|
6
6
|
type HoverShape = 'circle' | 'box';
|
|
7
7
|
type HoverPreset = 'none' | 'subtle' | 'flashlight' | 'magnifier' | 'forceField' | 'neon' | 'fire' | 'ice' | 'gravity' | 'shatter' | 'ghost' | 'glitchReveal';
|
|
@@ -255,6 +255,18 @@ declare const CHARSETS: {
|
|
|
255
255
|
readonly waves: " ˜∼≈〰≋∿∾∭∫";
|
|
256
256
|
readonly shards: " ╱╲╳◤◥◣◢△▲◆◼█";
|
|
257
257
|
readonly smoke: " ·˙⁚⁖∶∷⋮⋰⋱∴∵";
|
|
258
|
+
/** All printable ASCII characters ordered from airy punctuation to dense symbols. */
|
|
259
|
+
readonly ascii: " .'`^\",:;~-_+<>i!lI?/\\|()[]{}1tfjrxnuvczXYUJCLQ0OZmwqpdbkhao*#MW&8%B@$";
|
|
260
|
+
/** Clean product UI glyphs inspired by command palettes, panes, controls, and focus rings. */
|
|
261
|
+
readonly interface: " ·•-–—+=:;<>[]{}()⌘⌥⇧⌃↵↗↘◇◆◈□■";
|
|
262
|
+
/** Prompt, shell, and assistant transcript glyphs for modern AI/dev surfaces. */
|
|
263
|
+
readonly prompt: " .:;>_`/\\|{}[]()=+*#@$";
|
|
264
|
+
/** Analytical/data-viz glyphs: sparse dots into nodes, diamonds, and dense blocks. */
|
|
265
|
+
readonly data: " ·∙•◦○●◇◆◈▱▰▣█";
|
|
266
|
+
/** Warm editorial/math symbols for quieter Claude-like and research-oriented pages. */
|
|
267
|
+
readonly humanist: " ·˙,:;∴∵∷∶⁚⋮⋯∼≈≋∞";
|
|
268
|
+
/** Dense network/mesh characters for agent maps, model graphs, and infrastructure visuals. */
|
|
269
|
+
readonly mesh: " ·╶╴╷╵─│┌┐└┘├┤┬┴┼╬░▒▓█";
|
|
258
270
|
};
|
|
259
271
|
/**
|
|
260
272
|
* Curated charset sequences for use with `charsetFrames`.
|
|
@@ -281,6 +293,12 @@ declare const CHARSET_SEQUENCES: {
|
|
|
281
293
|
readonly dream: string[];
|
|
282
294
|
/** Geometric shapes → shards → starfield — sci-fi angular */
|
|
283
295
|
readonly angular: string[];
|
|
296
|
+
/** Interface controls → prompts → data nodes — clean assistant/product motion */
|
|
297
|
+
readonly assistant: string[];
|
|
298
|
+
/** Mesh → data → ASCII — alive network signal with readable texture */
|
|
299
|
+
readonly signal: string[];
|
|
300
|
+
/** Humanist symbols → waves → smoke — soft research/editorial motion */
|
|
301
|
+
readonly editorial: string[];
|
|
284
302
|
};
|
|
285
303
|
type CharsetSequenceKey = keyof typeof CHARSET_SEQUENCES;
|
|
286
304
|
type CharsetKey = keyof typeof CHARSETS;
|
|
@@ -288,6 +306,179 @@ type CharsetKey = keyof typeof CHARSETS;
|
|
|
288
306
|
* Art Style presets — each one sets render mode, charset, color mode, etc.
|
|
289
307
|
*/
|
|
290
308
|
declare const ART_STYLE_PRESETS: Record<ArtStyle, Partial<AsciiOptions>>;
|
|
309
|
+
/**
|
|
310
|
+
* Higher-level living presets for output that should feel active immediately.
|
|
311
|
+
* They intentionally compose existing primitives so renderers and integrations
|
|
312
|
+
* can consume them as a normal `Partial<AsciiOptions>`.
|
|
313
|
+
*/
|
|
314
|
+
declare const LIVING_STYLE_PRESETS: {
|
|
315
|
+
readonly agentField: {
|
|
316
|
+
readonly charsetFrames: string[];
|
|
317
|
+
readonly charsetFps: 1.6;
|
|
318
|
+
readonly animationStyle: "breathe";
|
|
319
|
+
readonly animationSpeed: 0.75;
|
|
320
|
+
readonly ditherStrength: 0.12;
|
|
321
|
+
readonly hoverEffect: "glow";
|
|
322
|
+
readonly hoverStrength: 0.42;
|
|
323
|
+
readonly hoverRadius: 0.18;
|
|
324
|
+
readonly hoverColor: "#f4f1ea";
|
|
325
|
+
readonly normalize: true;
|
|
326
|
+
readonly fontSize?: number | undefined;
|
|
327
|
+
readonly charSpacing?: number | undefined;
|
|
328
|
+
readonly brightness?: number | undefined;
|
|
329
|
+
readonly contrast?: number | undefined;
|
|
330
|
+
readonly charset?: string | undefined;
|
|
331
|
+
readonly colorMode?: ColorMode | undefined;
|
|
332
|
+
readonly accentColor?: string | undefined;
|
|
333
|
+
readonly invert?: boolean | "auto" | undefined;
|
|
334
|
+
readonly renderMode?: RenderMode | undefined;
|
|
335
|
+
readonly dotSizeRatio?: number | undefined;
|
|
336
|
+
readonly charAspect?: number | undefined;
|
|
337
|
+
readonly hoverShape?: HoverShape | undefined;
|
|
338
|
+
readonly hoverText?: string | string[] | undefined;
|
|
339
|
+
readonly artStyle?: ArtStyle | undefined;
|
|
340
|
+
readonly customText?: string | undefined;
|
|
341
|
+
readonly chromaKey?: string | boolean | {
|
|
342
|
+
r: number;
|
|
343
|
+
g: number;
|
|
344
|
+
b: number;
|
|
345
|
+
} | null | undefined;
|
|
346
|
+
readonly chromaKeyTolerance?: number | undefined;
|
|
347
|
+
};
|
|
348
|
+
readonly liquidSignal: {
|
|
349
|
+
readonly charsetFrames: string[];
|
|
350
|
+
readonly charsetFps: 2.4;
|
|
351
|
+
readonly animationStyle: "melt";
|
|
352
|
+
readonly animationSpeed: 0.65;
|
|
353
|
+
readonly ditherStrength: 0.45;
|
|
354
|
+
readonly hoverEffect: "repel";
|
|
355
|
+
readonly hoverStrength: 0.55;
|
|
356
|
+
readonly hoverRadius: 0.22;
|
|
357
|
+
readonly hoverColor: "#8fd3ff";
|
|
358
|
+
readonly normalize: true;
|
|
359
|
+
readonly fontSize?: number | undefined;
|
|
360
|
+
readonly charSpacing?: number | undefined;
|
|
361
|
+
readonly brightness?: number | undefined;
|
|
362
|
+
readonly contrast?: number | undefined;
|
|
363
|
+
readonly charset?: string | undefined;
|
|
364
|
+
readonly colorMode?: ColorMode | undefined;
|
|
365
|
+
readonly accentColor?: string | undefined;
|
|
366
|
+
readonly invert?: boolean | "auto" | undefined;
|
|
367
|
+
readonly renderMode?: RenderMode | undefined;
|
|
368
|
+
readonly dotSizeRatio?: number | undefined;
|
|
369
|
+
readonly charAspect?: number | undefined;
|
|
370
|
+
readonly hoverShape?: HoverShape | undefined;
|
|
371
|
+
readonly hoverText?: string | string[] | undefined;
|
|
372
|
+
readonly artStyle?: ArtStyle | undefined;
|
|
373
|
+
readonly customText?: string | undefined;
|
|
374
|
+
readonly chromaKey?: string | boolean | {
|
|
375
|
+
r: number;
|
|
376
|
+
g: number;
|
|
377
|
+
b: number;
|
|
378
|
+
} | null | undefined;
|
|
379
|
+
readonly chromaKeyTolerance?: number | undefined;
|
|
380
|
+
};
|
|
381
|
+
readonly cursorGravity: {
|
|
382
|
+
readonly charsetFrames: string[];
|
|
383
|
+
readonly charsetFps: 1.2;
|
|
384
|
+
readonly animationStyle: "orbit";
|
|
385
|
+
readonly animationSpeed: 0.9;
|
|
386
|
+
readonly ditherStrength: 0.2;
|
|
387
|
+
readonly hoverEffect: "attract";
|
|
388
|
+
readonly hoverStrength: 0.82;
|
|
389
|
+
readonly hoverRadius: 0.24;
|
|
390
|
+
readonly hoverColor: "#ffffff";
|
|
391
|
+
readonly normalize: true;
|
|
392
|
+
readonly fontSize?: number | undefined;
|
|
393
|
+
readonly charSpacing?: number | undefined;
|
|
394
|
+
readonly brightness?: number | undefined;
|
|
395
|
+
readonly contrast?: number | undefined;
|
|
396
|
+
readonly charset?: string | undefined;
|
|
397
|
+
readonly colorMode?: ColorMode | undefined;
|
|
398
|
+
readonly accentColor?: string | undefined;
|
|
399
|
+
readonly invert?: boolean | "auto" | undefined;
|
|
400
|
+
readonly renderMode?: RenderMode | undefined;
|
|
401
|
+
readonly dotSizeRatio?: number | undefined;
|
|
402
|
+
readonly charAspect?: number | undefined;
|
|
403
|
+
readonly hoverShape?: HoverShape | undefined;
|
|
404
|
+
readonly hoverText?: string | string[] | undefined;
|
|
405
|
+
readonly artStyle?: ArtStyle | undefined;
|
|
406
|
+
readonly customText?: string | undefined;
|
|
407
|
+
readonly chromaKey?: string | boolean | {
|
|
408
|
+
r: number;
|
|
409
|
+
g: number;
|
|
410
|
+
b: number;
|
|
411
|
+
} | null | undefined;
|
|
412
|
+
readonly chromaKeyTolerance?: number | undefined;
|
|
413
|
+
};
|
|
414
|
+
readonly editorialPulse: {
|
|
415
|
+
readonly charsetFrames: string[];
|
|
416
|
+
readonly charsetFps: 0.9;
|
|
417
|
+
readonly animationStyle: "ripple";
|
|
418
|
+
readonly animationSpeed: 0.55;
|
|
419
|
+
readonly ditherStrength: 0.18;
|
|
420
|
+
readonly hoverEffect: "spotlight";
|
|
421
|
+
readonly hoverStrength: 0.35;
|
|
422
|
+
readonly hoverRadius: 0.2;
|
|
423
|
+
readonly hoverColor: "#fff8ea";
|
|
424
|
+
readonly normalize: true;
|
|
425
|
+
readonly fontSize?: number | undefined;
|
|
426
|
+
readonly charSpacing?: number | undefined;
|
|
427
|
+
readonly brightness?: number | undefined;
|
|
428
|
+
readonly contrast?: number | undefined;
|
|
429
|
+
readonly charset?: string | undefined;
|
|
430
|
+
readonly colorMode?: ColorMode | undefined;
|
|
431
|
+
readonly accentColor?: string | undefined;
|
|
432
|
+
readonly invert?: boolean | "auto" | undefined;
|
|
433
|
+
readonly renderMode?: RenderMode | undefined;
|
|
434
|
+
readonly dotSizeRatio?: number | undefined;
|
|
435
|
+
readonly charAspect?: number | undefined;
|
|
436
|
+
readonly hoverShape?: HoverShape | undefined;
|
|
437
|
+
readonly hoverText?: string | string[] | undefined;
|
|
438
|
+
readonly artStyle?: ArtStyle | undefined;
|
|
439
|
+
readonly customText?: string | undefined;
|
|
440
|
+
readonly chromaKey?: string | boolean | {
|
|
441
|
+
r: number;
|
|
442
|
+
g: number;
|
|
443
|
+
b: number;
|
|
444
|
+
} | null | undefined;
|
|
445
|
+
readonly chromaKeyTolerance?: number | undefined;
|
|
446
|
+
};
|
|
447
|
+
readonly terminalFlow: {
|
|
448
|
+
readonly charsetFrames: string[];
|
|
449
|
+
readonly charsetFps: 3;
|
|
450
|
+
readonly animationStyle: "rain";
|
|
451
|
+
readonly animationSpeed: 1.1;
|
|
452
|
+
readonly ditherStrength: 0.22;
|
|
453
|
+
readonly hoverEffect: "glitchText";
|
|
454
|
+
readonly hoverStrength: 0.65;
|
|
455
|
+
readonly hoverRadius: 0.16;
|
|
456
|
+
readonly hoverColor: "#d4ff00";
|
|
457
|
+
readonly hoverText: ["BUILD", "SHIP", "RUN", "ASK", "MODEL"];
|
|
458
|
+
readonly normalize: true;
|
|
459
|
+
readonly fontSize?: number | undefined;
|
|
460
|
+
readonly charSpacing?: number | undefined;
|
|
461
|
+
readonly brightness?: number | undefined;
|
|
462
|
+
readonly contrast?: number | undefined;
|
|
463
|
+
readonly charset?: string | undefined;
|
|
464
|
+
readonly colorMode?: ColorMode | undefined;
|
|
465
|
+
readonly accentColor?: string | undefined;
|
|
466
|
+
readonly invert?: boolean | "auto" | undefined;
|
|
467
|
+
readonly renderMode?: RenderMode | undefined;
|
|
468
|
+
readonly dotSizeRatio?: number | undefined;
|
|
469
|
+
readonly charAspect?: number | undefined;
|
|
470
|
+
readonly hoverShape?: HoverShape | undefined;
|
|
471
|
+
readonly artStyle?: ArtStyle | undefined;
|
|
472
|
+
readonly customText?: string | undefined;
|
|
473
|
+
readonly chromaKey?: string | boolean | {
|
|
474
|
+
r: number;
|
|
475
|
+
g: number;
|
|
476
|
+
b: number;
|
|
477
|
+
} | null | undefined;
|
|
478
|
+
readonly chromaKeyTolerance?: number | undefined;
|
|
479
|
+
};
|
|
480
|
+
};
|
|
481
|
+
type LivingStylePresetKey = keyof typeof LIVING_STYLE_PRESETS;
|
|
291
482
|
declare const DEFAULT_OPTIONS: AsciiOptions;
|
|
292
483
|
/**
|
|
293
484
|
* Hover presets — one-click configurations for the hover system.
|
|
@@ -354,6 +545,49 @@ interface AsciifySimpleOptions {
|
|
|
354
545
|
/** Extra options to merge on top of the preset */
|
|
355
546
|
options?: Partial<AsciiOptions>;
|
|
356
547
|
}
|
|
548
|
+
type ScrollTriggerInstance = {
|
|
549
|
+
kill?: () => void;
|
|
550
|
+
};
|
|
551
|
+
type ScrollTriggerLike = {
|
|
552
|
+
create: (vars: Record<string, unknown>) => ScrollTriggerInstance;
|
|
553
|
+
};
|
|
554
|
+
type GsapLike = {
|
|
555
|
+
registerPlugin?: (...plugins: unknown[]) => void;
|
|
556
|
+
ScrollTrigger?: ScrollTriggerLike;
|
|
557
|
+
};
|
|
558
|
+
interface VideoScrollScrubOptions {
|
|
559
|
+
/**
|
|
560
|
+
* Element that controls scroll progress. Accepts an HTMLElement or selector.
|
|
561
|
+
* When used through `asciifyVideo`, defaults to `fitTo` or the canvas.
|
|
562
|
+
*/
|
|
563
|
+
trigger?: HTMLElement | string | null;
|
|
564
|
+
/**
|
|
565
|
+
* GSAP instance. Pass this with ScrollTrigger for native GSAP scrub support.
|
|
566
|
+
*
|
|
567
|
+
* @example
|
|
568
|
+
* asciifyVideo('/hero.mp4', canvas, {
|
|
569
|
+
* fitTo: '#hero',
|
|
570
|
+
* scroll: { gsap, ScrollTrigger }
|
|
571
|
+
* });
|
|
572
|
+
*/
|
|
573
|
+
gsap?: GsapLike;
|
|
574
|
+
/** GSAP ScrollTrigger plugin. Optional when available as `gsap.ScrollTrigger`. */
|
|
575
|
+
ScrollTrigger?: ScrollTriggerLike;
|
|
576
|
+
/** GSAP start value. Native fallback ignores this and uses viewport progress. */
|
|
577
|
+
start?: string;
|
|
578
|
+
/** GSAP end value. Native fallback ignores this and uses viewport progress. */
|
|
579
|
+
end?: string;
|
|
580
|
+
/** GSAP scrub value. Default: `true`. Native fallback always scrubs. */
|
|
581
|
+
scrub?: boolean | number;
|
|
582
|
+
/** Video time to map from. Defaults to trim start or `0`. */
|
|
583
|
+
from?: number;
|
|
584
|
+
/** Video time to map to. Defaults to trim end or video duration. */
|
|
585
|
+
to?: number;
|
|
586
|
+
/** Optional progress transform before mapping to video time. */
|
|
587
|
+
ease?: (progress: number) => number;
|
|
588
|
+
/** Called whenever scroll progress updates. */
|
|
589
|
+
onUpdate?: (progress: number, video: HTMLVideoElement) => void;
|
|
590
|
+
}
|
|
357
591
|
interface AsciifyVideoOptions extends AsciifySimpleOptions {
|
|
358
592
|
/**
|
|
359
593
|
* Fit the canvas to a container element, maintaining the video's aspect ratio.
|
|
@@ -376,6 +610,18 @@ interface AsciifyVideoOptions extends AsciifySimpleOptions {
|
|
|
376
610
|
* ⚠️ Memory-intensive. Capped at 10 s / 300 frames.
|
|
377
611
|
*/
|
|
378
612
|
preExtract?: boolean;
|
|
613
|
+
/**
|
|
614
|
+
* Target FPS for pre-extracted video frames. Lower values use less memory and
|
|
615
|
+
* make scroll scrubbing cheaper. Defaults to `18` for pre-extracted scroll
|
|
616
|
+
* scrub and the engine default for normal pre-extracted playback.
|
|
617
|
+
*/
|
|
618
|
+
fps?: number;
|
|
619
|
+
/**
|
|
620
|
+
* Maximum long-edge render dimension for video frame extraction.
|
|
621
|
+
* Lower this for large full-width heroes where the canvas is CSS-scaled.
|
|
622
|
+
* Default: `2048`.
|
|
623
|
+
*/
|
|
624
|
+
maxRenderDimension?: number;
|
|
379
625
|
/**
|
|
380
626
|
* Trim the video to a specific time range (in seconds).
|
|
381
627
|
* - `start` — seek to this time before playback begins. Default: `0`
|
|
@@ -390,6 +636,25 @@ interface AsciifyVideoOptions extends AsciifySimpleOptions {
|
|
|
390
636
|
start?: number;
|
|
391
637
|
end?: number;
|
|
392
638
|
};
|
|
639
|
+
/**
|
|
640
|
+
* Sync video time to scroll progress.
|
|
641
|
+
*
|
|
642
|
+
* - `true` uses native scroll scrubbing with `fitTo`/canvas as the trigger.
|
|
643
|
+
* - Passing `gsap` + `ScrollTrigger` uses GSAP ScrollTrigger.
|
|
644
|
+
*
|
|
645
|
+
* @example
|
|
646
|
+
* await asciifyVideo('/hero.mp4', canvas, {
|
|
647
|
+
* fitTo: '#hero',
|
|
648
|
+
* scroll: true
|
|
649
|
+
* });
|
|
650
|
+
*
|
|
651
|
+
* @example
|
|
652
|
+
* await asciifyVideo('/hero.mp4', canvas, {
|
|
653
|
+
* fitTo: '#hero',
|
|
654
|
+
* scroll: { gsap, ScrollTrigger, start: 'top bottom', end: 'bottom top', scrub: 1 }
|
|
655
|
+
* });
|
|
656
|
+
*/
|
|
657
|
+
scroll?: boolean | VideoScrollScrubOptions;
|
|
393
658
|
/**
|
|
394
659
|
* Called once when the video metadata is loaded and playback has started.
|
|
395
660
|
* Receives the backing video element.
|
|
@@ -400,6 +665,13 @@ interface AsciifyVideoOptions extends AsciifySimpleOptions {
|
|
|
400
665
|
}
|
|
401
666
|
/** @deprecated Use {@link AsciifyVideoOptions} */
|
|
402
667
|
type AsciifyLiveVideoOptions = AsciifyVideoOptions;
|
|
668
|
+
/**
|
|
669
|
+
* Sync an HTMLVideoElement's currentTime to scroll progress.
|
|
670
|
+
*
|
|
671
|
+
* If `gsap` and `ScrollTrigger` are supplied, the helper uses GSAP. Otherwise
|
|
672
|
+
* it falls back to a tiny native scroll listener. Returns a cleanup function.
|
|
673
|
+
*/
|
|
674
|
+
declare function createVideoScrollScrub(video: HTMLVideoElement, opts?: VideoScrollScrubOptions): () => void;
|
|
403
675
|
/**
|
|
404
676
|
* Convert an image/video/canvas element to ASCII art and render it onto a canvas.
|
|
405
677
|
*
|
|
@@ -454,7 +726,7 @@ declare function asciifyGif(source: string | ArrayBuffer, canvas: HTMLCanvasElem
|
|
|
454
726
|
* // Pre-extract frames (old behavior):
|
|
455
727
|
* const stop = await asciifyVideo('/clip.mp4', canvas, { preExtract: true });
|
|
456
728
|
*/
|
|
457
|
-
declare function asciifyVideo(source: HTMLVideoElement | string, canvas: HTMLCanvasElement, { fontSize, artStyle, options, fitTo, preExtract, trim, onReady, onFrame }?: AsciifyVideoOptions): Promise<() => void>;
|
|
729
|
+
declare function asciifyVideo(source: HTMLVideoElement | string, canvas: HTMLCanvasElement, { fontSize, artStyle, options, fitTo, preExtract, fps, maxRenderDimension, trim, scroll, onReady, onFrame }?: AsciifyVideoOptions): Promise<() => void>;
|
|
458
730
|
/**
|
|
459
731
|
* @deprecated Use {@link asciifyVideo} instead — it now defaults to live streaming
|
|
460
732
|
* and accepts the same options including `fitTo` and `preExtract`.
|
|
@@ -1180,4 +1452,4 @@ declare function asciifyText(text: string, options?: BigTextOptions): string;
|
|
|
1180
1452
|
*/
|
|
1181
1453
|
declare function renderTextToCanvas(canvas: HTMLCanvasElement, text: string, options?: BigTextOptions): void;
|
|
1182
1454
|
|
|
1183
|
-
export { ART_STYLE_PRESETS, type AnimationStyle, type ArtStyle, type AsciiBackgroundOptions, type AsciiCell, type AsciiFrame, type AsciiOptions, type AsciiResult, type AsciifyLiveVideoOptions, type AsciifySimpleOptions, type AsciifyVideoOptions, type AuroraBackgroundOptions, BACKGROUND_TYPES, type BackgroundType, type BigTextOptions, CHARSETS, CHARSET_SEQUENCES, type CharsetKey, type CharsetSequenceKey, type CircuitBackgroundOptions, type ColorMode, DEFAULT_OPTIONS, type DnaBackgroundOptions, type FireBackgroundOptions, type GridBackgroundOptions, HOVER_PRESETS, type HoverEffect, type HoverPreset, type HoverShape, type MorphBackgroundOptions, type MountWaveOptions, type NoiseBackgroundOptions, PALETTE_THEMES, type PaletteTheme, type PulseBackgroundOptions, type RainBackgroundOptions, type RenderMode, type SilkBackgroundOptions, type SnapshotOptions, type SourceType, type StarsBackgroundOptions, type TerrainBackgroundOptions, type TextBackgroundOptions, type VoidBackgroundOptions, type WaveBackgroundOptions, type WebcamOptions, asciiBackground, asciiText, asciiTextAnsi, asciify, asciifyGif, asciifyLiveVideo, asciifyText, asciifyVideo, asciifyWebcam, buildTextFrame, captureSnapshot, gifToAsciiFrames, imageToAsciiFrame, mountWaveBackground, renderAuroraBackground, renderCircuitBackground, renderDnaBackground, renderFireBackground, renderFrameToCanvas, renderGridBackground, renderMorphBackground, renderNoiseBackground, renderPulseBackground, renderRainBackground, renderSilkBackground, renderStarsBackground, renderTerrainBackground, renderTextBackground, renderTextToCanvas, renderVoidBackground, renderWaveBackground, snapshotAndDownload, videoToAsciiFrames };
|
|
1455
|
+
export { ART_STYLE_PRESETS, type AnimationStyle, type ArtStyle, type AsciiBackgroundOptions, type AsciiCell, type AsciiFrame, type AsciiOptions, type AsciiResult, type AsciifyLiveVideoOptions, type AsciifySimpleOptions, type AsciifyVideoOptions, type AuroraBackgroundOptions, BACKGROUND_TYPES, type BackgroundType, type BigTextOptions, CHARSETS, CHARSET_SEQUENCES, type CharsetKey, type CharsetSequenceKey, type CircuitBackgroundOptions, type ColorMode, DEFAULT_OPTIONS, type DnaBackgroundOptions, type FireBackgroundOptions, type GridBackgroundOptions, HOVER_PRESETS, type HoverEffect, type HoverPreset, type HoverShape, LIVING_STYLE_PRESETS, type LivingStylePresetKey, type MorphBackgroundOptions, type MountWaveOptions, type NoiseBackgroundOptions, PALETTE_THEMES, type PaletteTheme, type PulseBackgroundOptions, type RainBackgroundOptions, type RenderMode, type SilkBackgroundOptions, type SnapshotOptions, type SourceType, type StarsBackgroundOptions, type TerrainBackgroundOptions, type TextBackgroundOptions, type VideoScrollScrubOptions, type VoidBackgroundOptions, type WaveBackgroundOptions, type WebcamOptions, asciiBackground, asciiText, asciiTextAnsi, asciify, asciifyGif, asciifyLiveVideo, asciifyText, asciifyVideo, asciifyWebcam, buildTextFrame, captureSnapshot, createVideoScrollScrub, gifToAsciiFrames, imageToAsciiFrame, mountWaveBackground, renderAuroraBackground, renderCircuitBackground, renderDnaBackground, renderFireBackground, renderFrameToCanvas, renderGridBackground, renderMorphBackground, renderNoiseBackground, renderPulseBackground, renderRainBackground, renderSilkBackground, renderStarsBackground, renderTerrainBackground, renderTextBackground, renderTextToCanvas, renderVoidBackground, renderWaveBackground, snapshotAndDownload, videoToAsciiFrames };
|