strapi/examples/getstarted/global.d.ts

12 lines
128 B
TypeScript
Raw Normal View History

2021-06-30 20:00:03 +02:00
interface Restaurant {
name: string;
}
declare global {
interface AllTypes {
restaurant: Restaurant;
}
}
export {};