9 lines
180 B
TypeScript
9 lines
180 B
TypeScript
export default interface Lookup {
|
|
id: number;
|
|
documentId: string;
|
|
collection: string;
|
|
reference: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
publishedAt: string;
|
|
}
|