9 lines
164 B
TypeScript
Executable File
9 lines
164 B
TypeScript
Executable File
export interface Localization {
|
|
id: number;
|
|
name: string;
|
|
language: string;
|
|
lines?: Record<string, string>;
|
|
created_at?: string;
|
|
updated_at?: string;
|
|
}
|