strapi/examples/getstarted/global.d.ts
2021-06-30 20:00:03 +02:00

12 lines
128 B
TypeScript

interface Restaurant {
name: string;
}
declare global {
interface AllTypes {
restaurant: Restaurant;
}
}
export {};