@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
13 lines (12 loc) • 485 B
TypeScript
import { GuidValue } from "..";
export declare abstract class MediaPickerStorageProviderContext {
/**
* Omnia service owning the responsibility of storing.
* */
abstract readonly omniaServiceId: GuidValue;
/**
* A constant guid, indicating the type of the context
* I.e. each one inheriting <see cref="MediaPickerStorageProviderContext"/> should set this to a unique constant guid.
* */
abstract readonly storageProviderContextId: GuidValue;
}