@tinymce/tinymce-angular
Version:
Official TinyMCE Angular Component
16 lines (15 loc) • 456 B
TypeScript
/**
* Copyright (c) 2017-present, Ephox, Inc.
*
* This source code is licensed under the Apache 2 license found in the
* LICENSE file in the root directory of this source tree.
*
*/
import { Observable } from 'rxjs';
interface ScriptLoader {
load: (doc: Document, url: string) => Observable<void>;
/** Intended to only to be used by tests. */
reinitialize: () => void;
}
declare const ScriptLoader: ScriptLoader;
export { ScriptLoader };