UNPKG

intentful

Version:

Create Custom Skills with less headache

12 lines (11 loc) 592 B
import { APLABaseComponentModel, APLABaseComponentProps, APLAComponent } from './component'; import { APLAMultiChildComponentModel } from '../interfaces'; import { APLAMultiChildComponentProps } from '../interfaces/props'; export interface APLAMixerModel extends APLABaseComponentModel, APLAMultiChildComponentModel { } export interface APLAMixerProps extends APLABaseComponentProps, APLAMultiChildComponentProps { } export declare class APLAMixer extends APLAComponent<APLAMixerModel, APLAMixerProps> { constructor(props: APLAMixerProps); componentSpecificModel(): APLAMixerModel; }