kibana/packages/kbn-plugin-generator/template/public/types.ts.ejs
Spencer 7b23e7cd8b
[kbn/plugin-generator] remove sao, modernize (#75465)
Co-authored-by: spalger <spalger@users.noreply.github.com>
2020-08-20 18:50:36 -07:00

12 lines
409 B
Plaintext

import { NavigationPublicPluginStart } from '<%= importFromRoot('src/plugins/navigation/public') %>';
export interface <%= upperCamelCase(name) %>PluginSetup {
getGreeting: () => string;
}
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface <%= upperCamelCase(name) %>PluginStart {}
export interface AppPluginStartDependencies {
navigation: NavigationPublicPluginStart
};