mirror of
https://github.com/strapi/strapi.git
synced 2025-07-11 02:52:16 +00:00
12 lines
128 B
TypeScript
12 lines
128 B
TypeScript
interface Restaurant {
|
|
name: string;
|
|
}
|
|
|
|
declare global {
|
|
interface AllTypes {
|
|
restaurant: Restaurant;
|
|
}
|
|
}
|
|
|
|
export {};
|