Interface ScopeObject

Construct a type with a set of properties K of type T

interface ScopeObject {
    toLiquid?: (() => any);
}

Hierarchy (view full)

  • Record<string | number | symbol, any>
    • ScopeObject

Properties

Properties

toLiquid?: (() => any)