aes70
Version:
A controller library for the AES70 protocol.
40 lines (34 loc) • 805 B
TypeScript
/*
* This file has been generated.
*/
import { IOcaLibVolType, OcaLibVolType } from './OcaLibVolType.js';
export declare interface IOcaLibraryIdentifier {
/**
* Type of the library (= type of its volumes)
* @type OcaLibVolType
*/
Type: IOcaLibVolType;
/**
* Object number of library.
* @type number
*/
ONo: number;
}
export declare class OcaLibraryIdentifier implements IOcaLibraryIdentifier {
/**
* Full identifier (type + object number) of Library (i.e. of an
* **OcaLibrary** instance)
* @class OcaLibraryIdentifier
*/
constructor(Type: OcaLibVolType, ONo: number);
/**
* Type of the library (= type of its volumes)
* @type OcaLibVolType
*/
Type: OcaLibVolType;
/**
* Object number of library.
* @type number
*/
ONo: number;
}