Interface InternalMoveFunction

interface InternalMoveFunction {
    isEntry: boolean;
    isView?: boolean;
    name: string;
    params: TypeDescriptor<any>[];
    return: TypeDescriptor<any>[];
    typeParams: InternalMoveTypeParam[];
    visibility: InternalMoveFunctionVisibility;
}

Properties

isEntry: boolean
isView?: boolean
name: string
params: TypeDescriptor<any>[]
return: TypeDescriptor<any>[]
typeParams: InternalMoveTypeParam[]