File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " next-flow-interface" ,
3- "version" : " 0.17.18 " ,
3+ "version" : " 0.17.19 " ,
44 "description" : " Interface package for NEXT FlOW. You can use this package to build your own plugin that can control anything." ,
55 "type" : " module" ,
66 "module" : " dist/index.js" ,
Original file line number Diff line number Diff line change 1+ import { Locale } from '@/api/service/main/internationalization/dto/locale'
12import { ThemeColor } from '@/api/service/main/theme/dto/theme-color.enum'
23
34import { PluginType } from './dto/plugin-type.enum'
@@ -15,6 +16,9 @@ export default interface BasePlugin {
1516
1617 data ?: Record < string , unknown >
1718
19+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
20+ messages ?: Record < Locale , Record < string , any > > | string
21+
1822 onInstall ?: ( ) => Promise < void >
1923 onEnable ?: ( ) => Promise < void >
2024 onDisable ?: ( ) => Promise < void >
You can’t perform that action at this time.
0 commit comments