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