refactor: rename figlet app to ascii and update all references

This commit is contained in:
2026-02-26 12:31:10 +01:00
parent 484423f299
commit e1406f427e
455 changed files with 47 additions and 47 deletions

View File

@@ -1,10 +1,10 @@
export interface FigletFont {
export interface ASCIIFont {
name: string;
fileName: string;
path: string;
}
export interface FigletOptions {
export interface ASCIIOptions {
font?: string;
horizontalLayout?: 'default' | 'fitted' | 'full' | 'controlled smushing' | 'universal smushing';
verticalLayout?: 'default' | 'fitted' | 'full' | 'controlled smushing' | 'universal smushing';