mirror of
https://github.com/strapi/strapi.git
synced 2025-08-03 06:18:37 +00:00
8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
import '@strapi/strapi';
|
|
|
|
declare module '@strapi/strapi' {
|
|
interface StrapiInterface {
|
|
customAddMethod(n1: number, n2: number): number;
|
|
}
|
|
}
|