8 lines
149 B
TypeScript
Raw Normal View History

2022-04-12 15:30:09 +02:00
import '@strapi/strapi';
declare module '@strapi/strapi' {
interface StrapiInterface {
customAddMethod(n1: number, n2: number): number;
}
}