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

27
types/ascii.ts Normal file
View File

@@ -0,0 +1,27 @@
export interface ASCIIFont {
name: string;
fileName: string;
path: string;
}
export interface ASCIIOptions {
font?: string;
horizontalLayout?: 'default' | 'fitted' | 'full' | 'controlled smushing' | 'universal smushing';
verticalLayout?: 'default' | 'fitted' | 'full' | 'controlled smushing' | 'universal smushing';
width?: number;
whitespaceBreak?: boolean;
}
export interface ConversionResult {
text: string;
font: string;
result: string;
timestamp: number;
}
export interface UserPreferences {
theme: 'light' | 'dark' | 'system';
defaultFont: string;
recentFonts: string[];
favorites: string[];
}