10 lines
152 B
TypeScript
10 lines
152 B
TypeScript
import { Lang } from "@/constants/languages"
|
|
|
|
export interface System {
|
|
system: {
|
|
content_type_uid: string
|
|
locale: Lang
|
|
uid: string
|
|
}
|
|
}
|