raonkeditor-angular
Version:
Angular component for RAON K Editor.
29 lines (28 loc) • 647 B
TypeScript
/**
* @license Copyright (c) 2003-2022, RAONWIZ DevTean. All rights reserved.
*/
/**
* Basic typings for the RaonkEditor elements.
*/
export declare namespace RaonkEditor {
/**
* The Component constructor.
*/
interface Config {
[]: any;
}
/**
* The RaonkEditor component interface runtimes.
*/
const enum Runtimes {
HTML5 = "html5",
AGENT = "agent"
}
/**
* The event object passed to RaonkEditor event callbacks.
*/
interface EventInfo {
readonly componentName: string;
readonly paramObj: any;
}
}