11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
export default interface Lookup {
|
|
id: number;
|
|
documentId: string;
|
|
collection: string;
|
|
image_item: boolean;
|
|
date_list: boolean;
|
|
reference: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
publishedAt: string;
|
|
}
|