@sodacore/ui
Version:
Sodacore UI is a powerful JSON-based DSL for describing web pages that can be rendered by a frontend JavaScript framework.
12 lines • 410 B
TypeScript
import type { IConfig } from '../types';
import { type Application, BasePlugin, type IPlugin } from '@sodacore/core';
export default class UiPlugin extends BasePlugin implements IPlugin {
protected config: IConfig;
name: any;
version: any;
description: any;
author: any;
constructor(config?: IConfig);
install(app: Application): Promise<void>;
}
//# sourceMappingURL=plugin.d.ts.map