Variable: Runtime

const Runtime: {
  boot: (rawOptions) => Promise<RuntimeContainer>;
  clearPersistence: (persistenceKey) => Promise<boolean>;
};

Type Declaration

boot

boot: (rawOptions) => Promise<RuntimeContainer>;

Parameters

ParameterType
rawOptionsBootOptions

Returns

Promise<RuntimeContainer>

clearPersistence

clearPersistence: (persistenceKey) => Promise<boolean>;

Parameters

ParameterType
persistenceKeystring

Returns

Promise<boolean>