UNPKG

laravel-jstools

Version:

JS tools for building front-side of Laravel applications

10 lines (9 loc) 376 B
import { AnyObjInterface } from '../../interfaces/AnyObjInterface'; import { ComponentContract } from '../contracts/ComponentContract'; export declare class QuillEditor implements ComponentContract { private quillId; private quill; constructor(quillId: string, options: AnyObjInterface); getValue(): null | string; setValue(json: string): void; }