@dodi-smart/nuki-graphql-api
Version:
Nuki GraphQL API
38 lines • 1.29 kB
TypeScript
import type { CharacterSet } from './CharacterSet';
import type { Digest } from './Digest';
import type { Disposition } from './Disposition';
import type { Encoding } from './Encoding';
import type { InputStream } from './InputStream';
import type { Language } from './Language';
import type { MediaType } from './MediaType';
import type { Range } from './Range';
import type { ReadableByteChannel } from './ReadableByteChannel';
import type { Reader } from './Reader';
import type { Reference } from './Reference';
import type { SelectionRegistration } from './SelectionRegistration';
import type { Tag } from './Tag';
export type Representation = {
characterSet?: CharacterSet;
encodings?: Array<Encoding>;
locationRef?: Reference;
languages?: Array<Language>;
mediaType?: MediaType;
modificationDate?: string;
tag?: Tag;
available?: boolean;
digest?: Digest;
disposition?: Disposition;
expirationDate?: string;
range?: Range;
size?: number;
transient?: boolean;
text?: string;
reader?: Reader;
stream?: InputStream;
registration?: SelectionRegistration;
selectable?: boolean;
availableSize?: number;
empty?: boolean;
channel?: ReadableByteChannel;
};
//# sourceMappingURL=Representation.d.ts.map