interface TranscludeFunctionObject {
    isSlotFilled: ((arg0: string) => boolean);
    transcludeWithScope: ((arg0: Scope, arg1: CloneAttachFunction, arg2: JQLite, arg3: string) => JQLite);
    transcludeWithoutScope: ((arg0: CloneAttachFunction, arg1: JQLite, arg2: string) => JQLite);
}

Properties

isSlotFilled: ((arg0: string) => boolean)

Returns true if the specified slot contains content (i.e., one or more DOM nodes)

transcludeWithScope: ((arg0: Scope, arg1: CloneAttachFunction, arg2: JQLite, arg3: string) => JQLite)
transcludeWithoutScope: ((arg0: CloneAttachFunction, arg1: JQLite, arg2: string) => JQLite)