UNPKG

@digitalpersona/core

Version:
1,660 lines (1,659 loc) 250 kB
{ "metadata": { "toolPackage": "@microsoft/api-extractor", "toolVersion": "7.2.2", "schemaVersion": 1001, "oldestForwardsCompatibleVersion": 1001 }, "kind": "Package", "canonicalReference": "@digitalpersona/core", "docComment": "", "name": "@digitalpersona/core", "members": [ { "kind": "EntryPoint", "canonicalReference": "", "name": "", "members": [ { "kind": "Class", "canonicalReference": "(Answer:class)", "docComment": "/**\n * An answer to a security question.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "export declare class " }, { "kind": "Reference", "text": "Answer" }, { "kind": "Content", "text": " " } ], "releaseTag": "Public", "name": "Answer", "members": [ { "kind": "Constructor", "canonicalReference": "(:constructor,0)", "docComment": "/**\n * Creates an answer to a security question.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "constructor(" }, { "kind": "Reference", "text": "question" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Question" }, { "kind": "Content", "text": " | " }, { "kind": "Reference", "text": "QuestionNumber" }, { "kind": "Content", "text": ", " }, { "kind": "Reference", "text": "text" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "string" }, { "kind": "Content", "text": ");" } ], "releaseTag": "Public", "overloadIndex": 0, "parameters": [ { "parameterName": "question", "parameterTypeTokenRange": { "startIndex": 3, "endIndex": 6 } }, { "parameterName": "text", "parameterTypeTokenRange": { "startIndex": 9, "endIndex": 10 } } ] }, { "kind": "Property", "canonicalReference": "(number:instance)", "docComment": "/**\n * An index of a question in a question list.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "readonly " }, { "kind": "Reference", "text": "number" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "QuestionNumber" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "number", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 4 }, "isStatic": false }, { "kind": "Property", "canonicalReference": "(text:instance)", "docComment": "/**\n * A text of the answer. Must be given in correponding {@link Question.keyboard_layout | keyboard layout}.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "readonly " }, { "kind": "Reference", "text": "text" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "string" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "text", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 4 }, "isStatic": false }, { "kind": "Property", "canonicalReference": "(version:instance)", "docComment": "/**\n * Version info.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "readonly " }, { "kind": "Reference", "text": "version" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "1" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "version", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 4 }, "isStatic": false } ], "implementsTokenRanges": [] }, { "kind": "Class", "canonicalReference": "(Base32:class)", "docComment": "/**\n * Set of converters to Base32.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "export declare class " }, { "kind": "Reference", "text": "Base32" }, { "kind": "Content", "text": " " } ], "releaseTag": "Public", "name": "Base32", "members": [ { "kind": "Method", "canonicalReference": "(fromBytes:static,0)", "docComment": "/**\n * Converts a byte array to a Base32-encoded string.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "static " }, { "kind": "Reference", "text": "fromBytes" }, { "kind": "Content", "text": "(" }, { "kind": "Reference", "text": "bytes" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Uint8Array" }, { "kind": "Content", "text": " | number[]" }, { "kind": "Content", "text": "): " }, { "kind": "Reference", "text": "Base32String" }, { "kind": "Content", "text": ";" } ], "isStatic": true, "returnTypeTokenRange": { "startIndex": 8, "endIndex": 9 }, "releaseTag": "Public", "overloadIndex": 0, "parameters": [ { "parameterName": "bytes", "parameterTypeTokenRange": { "startIndex": 5, "endIndex": 7 } } ], "name": "fromBytes" } ], "implementsTokenRanges": [] }, { "kind": "Class", "canonicalReference": "(Base64:class)", "docComment": "/**\n * Set of converters to Base64.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "export declare class " }, { "kind": "Reference", "text": "Base64" }, { "kind": "Content", "text": " " } ], "releaseTag": "Public", "name": "Base64", "members": [ { "kind": "Property", "canonicalReference": "(fromBase64Url:static)", "docComment": "/**\n * Converts a Base64url-encoded string to a Base64-encoded string.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "static " }, { "kind": "Reference", "text": "fromBase64Url" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "(" }, { "kind": "Reference", "text": "s" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Base64UrlString" }, { "kind": "Content", "text": ") => " }, { "kind": "Reference", "text": "Base64String" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "fromBase64Url", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 9 }, "isStatic": true }, { "kind": "Property", "canonicalReference": "(fromBytes:static)", "docComment": "/**\n * Converts a byte array to a Base64-encoded string.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "static " }, { "kind": "Reference", "text": "fromBytes" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "(" }, { "kind": "Reference", "text": "bytes" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Uint8Array" }, { "kind": "Content", "text": ") => " }, { "kind": "Reference", "text": "Base64String" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "fromBytes", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 9 }, "isStatic": true }, { "kind": "Property", "canonicalReference": "(fromJSON:static)", "docComment": "/**\n * Encodes a plain JSON object or a string to a Base64-encoded string.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "static " }, { "kind": "Reference", "text": "fromJSON" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "(" }, { "kind": "Reference", "text": "obj" }, { "kind": "Content", "text": ": string | object) => " }, { "kind": "Reference", "text": "Base64String" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "fromJSON", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 7 }, "isStatic": true }, { "kind": "Property", "canonicalReference": "(fromUtf16:static)", "docComment": "/**\n * Encodes a UTF16 string to a Base64-encoded string.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "static " }, { "kind": "Reference", "text": "fromUtf16" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "(" }, { "kind": "Reference", "text": "s" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Utf16String" }, { "kind": "Content", "text": ") => " }, { "kind": "Reference", "text": "Base64String" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "fromUtf16", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 9 }, "isStatic": true }, { "kind": "Property", "canonicalReference": "(fromUtf8:static)", "docComment": "/**\n * Encodes a UTF8 string to a Base64-encoded string.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "static " }, { "kind": "Reference", "text": "fromUtf8" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "(" }, { "kind": "Reference", "text": "s" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Utf8String" }, { "kind": "Content", "text": ") => " }, { "kind": "Reference", "text": "Base64String" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "fromUtf8", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 9 }, "isStatic": true } ], "implementsTokenRanges": [] }, { "kind": "Class", "canonicalReference": "(Base64Url:class)", "docComment": "/**\n * Set of converters to Base64Url.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "export declare class " }, { "kind": "Reference", "text": "Base64Url" }, { "kind": "Content", "text": " " } ], "releaseTag": "Public", "name": "Base64Url", "members": [ { "kind": "Property", "canonicalReference": "(fromBase64:static)", "docComment": "/**\n * Converts a Base64-encoded string to a Base64url-encoded string.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "static " }, { "kind": "Reference", "text": "fromBase64" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "(" }, { "kind": "Reference", "text": "s" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Base64String" }, { "kind": "Content", "text": ") => " }, { "kind": "Reference", "text": "Base64UrlString" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "fromBase64", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 9 }, "isStatic": true }, { "kind": "Property", "canonicalReference": "(fromBytes:static)", "docComment": "/**\n * Converts a byte array to a Base64url-encoded string.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "static " }, { "kind": "Reference", "text": "fromBytes" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "(" }, { "kind": "Reference", "text": "bytes" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Uint8Array" }, { "kind": "Content", "text": ") => " }, { "kind": "Reference", "text": "Base64UrlString" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "fromBytes", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 9 }, "isStatic": true }, { "kind": "Property", "canonicalReference": "(fromJSON:static)", "docComment": "/**\n * Encodes a plain JSON object or a string to a Base64url-encoded string.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "static " }, { "kind": "Reference", "text": "fromJSON" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "(" }, { "kind": "Reference", "text": "obj" }, { "kind": "Content", "text": ": string | object) => " }, { "kind": "Reference", "text": "Base64UrlString" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "fromJSON", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 7 }, "isStatic": true }, { "kind": "Property", "canonicalReference": "(fromUtf16:static)", "docComment": "/**\n * Converts a UTF16 string to a Base64url-encoded string.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "static " }, { "kind": "Reference", "text": "fromUtf16" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "(" }, { "kind": "Reference", "text": "s" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Utf16String" }, { "kind": "Content", "text": ") => " }, { "kind": "Reference", "text": "Base64UrlString" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "fromUtf16", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 9 }, "isStatic": true }, { "kind": "Property", "canonicalReference": "(fromUtf8:static)", "docComment": "/**\n * Converts a UTF8 string to a Base64url-encoded string.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "static " }, { "kind": "Reference", "text": "fromUtf8" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "(" }, { "kind": "Reference", "text": "s" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Utf8String" }, { "kind": "Content", "text": ") => " }, { "kind": "Reference", "text": "Base64UrlString" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "fromUtf8", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 9 }, "isStatic": true } ], "implementsTokenRanges": [] }, { "kind": "Enum", "canonicalReference": "(BioFactor:enum)", "docComment": "/**\n * Biometric factors.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "export declare enum " }, { "kind": "Reference", "text": "BioFactor" }, { "kind": "Content", "text": " " } ], "releaseTag": "Public", "name": "BioFactor", "members": [ { "kind": "EnumMember", "canonicalReference": "FacialFeatures", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "FacialFeatures" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "2" } ], "releaseTag": "Public", "name": "FacialFeatures", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "Fingerprint", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "Fingerprint" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "8" } ], "releaseTag": "Public", "name": "Fingerprint", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "Gait", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "Gait" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "4096" } ], "releaseTag": "Public", "name": "Gait", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "HandGeometry", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "HandGeometry" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "64" } ], "releaseTag": "Public", "name": "HandGeometry", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "Iris", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "Iris" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "16" } ], "releaseTag": "Public", "name": "Iris", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "KeystrokeDynamics", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "KeystrokeDynamics" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "256" } ], "releaseTag": "Public", "name": "KeystrokeDynamics", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "LipMovement", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "LipMovement" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "512" } ], "releaseTag": "Public", "name": "LipMovement", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "Multiple", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "Multiple" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "1" } ], "releaseTag": "Public", "name": "Multiple", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "Retina", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "Retina" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "32" } ], "releaseTag": "Public", "name": "Retina", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "SignatureDynamics", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "SignatureDynamics" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "128" } ], "releaseTag": "Public", "name": "SignatureDynamics", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "ThermalFaceImage", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "ThermalFaceImage" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "1024" } ], "releaseTag": "Public", "name": "ThermalFaceImage", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "ThermalHandImage", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "ThermalHandImage" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "2048" } ], "releaseTag": "Public", "name": "ThermalHandImage", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "Voice", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "Voice" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "4" } ], "releaseTag": "Public", "name": "Voice", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } } ] }, { "kind": "Class", "canonicalReference": "(BioSample:class)", "docComment": "/**\n * A biometric sample.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "export declare class " }, { "kind": "Reference", "text": "BioSample" }, { "kind": "Content", "text": " " } ], "releaseTag": "Public", "name": "BioSample", "members": [ { "kind": "Constructor", "canonicalReference": "(:constructor,0)", "docComment": "/**\n * Constructs a new instance of the `BioSample` class\n */\n", "excerptTokens": [ { "kind": "Content", "text": "constructor(\n " }, { "kind": "Reference", "text": "Header" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "BioSampleHeader" }, { "kind": "Content", "text": ", \n " }, { "kind": "Reference", "text": "Data" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Base64UrlString" }, { "kind": "Content", "text": ");" } ], "releaseTag": "Public", "overloadIndex": 0, "parameters": [ { "parameterName": "Header", "parameterTypeTokenRange": { "startIndex": 3, "endIndex": 4 } }, { "parameterName": "Data", "parameterTypeTokenRange": { "startIndex": 7, "endIndex": 8 } } ] }, { "kind": "Property", "canonicalReference": "(Data:instance)", "docComment": "/**\n * Base64url encoded biometric sample data\n */\n", "excerptTokens": [ { "kind": "Content", "text": "readonly " }, { "kind": "Reference", "text": "Data" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "Base64UrlString" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "Data", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 4 }, "isStatic": false }, { "kind": "Property", "canonicalReference": "(Header:instance)", "docComment": "/**\n * Biometric sample header.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "readonly " }, { "kind": "Reference", "text": "Header" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "BioSampleHeader" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "Header", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 4 }, "isStatic": false }, { "kind": "Property", "canonicalReference": "(Version:instance)", "docComment": "/**\n * A version info.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "readonly " }, { "kind": "Reference", "text": "Version" }, { "kind": "Content", "text": " = 1;" } ], "releaseTag": "Public", "name": "Version", "propertyTypeTokenRange": { "startIndex": 0, "endIndex": 0 }, "isStatic": false } ], "implementsTokenRanges": [] }, { "kind": "Enum", "canonicalReference": "(BioSampleEncryption:enum)", "docComment": "/**\n * A biometric sample encryption type.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "export declare enum " }, { "kind": "Reference", "text": "BioSampleEncryption" }, { "kind": "Content", "text": " " } ], "releaseTag": "Public", "name": "BioSampleEncryption", "members": [ { "kind": "EnumMember", "canonicalReference": "None", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "None" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "0" } ], "releaseTag": "Public", "name": "None", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } }, { "kind": "EnumMember", "canonicalReference": "XTEA", "docComment": "", "excerptTokens": [ { "kind": "Reference", "text": "XTEA" }, { "kind": "Content", "text": " = " }, { "kind": "Content", "text": "1" } ], "releaseTag": "Public", "name": "XTEA", "initializerTokenRange": { "startIndex": 2, "endIndex": 3 } } ] }, { "kind": "Class", "canonicalReference": "(BioSampleFormat:class)", "docComment": "/**\n * Biometric sample format info.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "export declare class " }, { "kind": "Reference", "text": "BioSampleFormat" }, { "kind": "Content", "text": " " } ], "releaseTag": "Public", "name": "BioSampleFormat", "members": [ { "kind": "Constructor", "canonicalReference": "(:constructor,0)", "docComment": "/**\n * Constructs a new instance of the `BioSampleFormat` class\n */\n", "excerptTokens": [ { "kind": "Content", "text": "constructor(" }, { "kind": "Reference", "text": "FormatOwner" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "BioSampleFormatOwner" }, { "kind": "Content", "text": ", " }, { "kind": "Reference", "text": "FormatID" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "number" }, { "kind": "Content", "text": ");" } ], "releaseTag": "Public", "overloadIndex": 0, "parameters": [ { "parameterName": "FormatOwner", "parameterTypeTokenRange": { "startIndex": 3, "endIndex": 4 } }, { "parameterName": "FormatID", "parameterTypeTokenRange": { "startIndex": 7, "endIndex": 8 } } ] }, { "kind": "Property", "canonicalReference": "(FormatID:instance)", "docComment": "", "excerptTokens": [ { "kind": "Content", "text": "readonly " }, { "kind": "Reference", "text": "FormatID" }, { "kind": "Content", "text": ": " }, { "kind": "Content", "text": "number" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "FormatID", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 4 }, "isStatic": false }, { "kind": "Property", "canonicalReference": "(FormatOwner:instance)", "docComment": "", "excerptTokens": [ { "kind": "Content", "text": "readonly " }, { "kind": "Reference", "text": "FormatOwner" }, { "kind": "Content", "text": ": " }, { "kind": "Reference", "text": "BioSampleFormatOwner" }, { "kind": "Content", "text": ";" } ], "releaseTag": "Public", "name": "FormatOwner", "propertyTypeTokenRange": { "startIndex": 3, "endIndex": 4 }, "isStatic": false } ], "implementsTokenRanges": [] }, { "kind": "Enum", "canonicalReference": "(BioSampleFormatOwner:enum)", "docComment": "/**\n * Biometric owner ID registered with {@link http://www.ibia.org/base/cbeff/_biometric_org.phpx | IBIA}.\n */\n", "excerptTokens": [ { "kind": "Content", "text": "export declare enum " }, { "kind": "Reference", "text": "BioSampleFormatOwner" }, { "kind": "Content", "text": " " } ], "releaseTag": "Public", "name": "BioSampleFormatOwner", "members": [ { "kind": "EnumMember", "canonicalReference": "Cognitec", "docComment": "/**\n * Cognitec (face)\n */\n", "excerptTokens": [ { "kind": "Reference", "text": "Cognitec" }, { "kind": "Content", "text": " = " },