@oobleck/fluid-backend
Version:
Fluid Framework backend for nteract RTC
13 lines (12 loc) • 591 B
TypeScript
import { DataObjectFactory } from "@fluid-experimental/fluid-framework";
import { IMarkdownCell } from "./types";
import { ProtoCellDDS } from "./protoCell";
/**
* Fluid DataObject
*/
export declare class TextCellDDS extends ProtoCellDDS implements IMarkdownCell {
static DataObjectName: string;
static readonly Factory: DataObjectFactory<TextCellDDS, {}, import("../schema").TextCellInput, import("@fluidframework/common-definitions").IEvent>;
get cellType(): "MarkdownCell";
get events$(): import("rxjs").Observable<import("../schema").ICellMetadataEvent>;
}