mirror of
https://github.com/strapi/strapi.git
synced 2025-07-11 11:03:46 +00:00
12 lines
128 B
TypeScript
12 lines
128 B
TypeScript
![]() |
interface Restaurant {
|
||
|
name: string;
|
||
|
}
|
||
|
|
||
|
declare global {
|
||
|
interface AllTypes {
|
||
|
restaurant: Restaurant;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {};
|