Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 656 Bytes

view-adapters.api.md

File metadata and controls

23 lines (18 loc) · 656 Bytes

API Report File for "@fluidframework/view-adapters"

Do not edit this file. It is a report generated by API Extractor.

import { FluidObject } from '@fluidframework/core-interfaces';
import { IFluidMountableView } from '@fluidframework/view-interfaces';

// @public
export class MountableView implements IFluidMountableView {
    constructor(view: FluidObject);
    // (undocumented)
    static canMount(view: FluidObject): boolean;
    // (undocumented)
    get IFluidMountableView(): MountableView;
    // (undocumented)
    mount(container: HTMLElement): void;
    // (undocumented)
    unmount(): void;
}