| 2 | import FunctionalAstrolabe from '../../astro/FunctionalAstrolabe'; |
| 3 | |
| 4 | export interface IAstrolabe extends FunctionalAstrolabe { |
| 5 | myNewFunc: () => string; |
| 6 | majorStar: () => string; |
| 7 | } |
| 8 | |
| 9 | // 创建一个插件函数 |
| 10 | export function myTestPlugin(this: IAstrolabe): void { |
nothing calls this directly
no outgoing calls
no test coverage detected