UNPKG

intentful

Version:

Create Custom Skills with less headache

11 lines (10 loc) 582 B
import { APLABaseComponentModel, APLABaseComponentProps, APLAComponent } from './component'; import { APLAMultiChildComponentModel, APLAMultiChildComponentProps } from '../interfaces'; export interface APLASequencerModel extends APLABaseComponentModel, APLAMultiChildComponentModel { } export interface APLASequencerProps extends APLABaseComponentProps, APLAMultiChildComponentProps { } export declare class APLASequencer extends APLAComponent<APLASequencerModel, APLASequencerProps> { constructor(props: APLASequencerProps); componentSpecificModel(): APLASequencerModel; }