10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
export default interface Lookup {
|
|
id: number;
|
|
documentId: string;
|
|
collection: string;
|
|
imageItem: boolean;
|
|
reference: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
publishedAt: string;
|
|
}
|