Type Alias DocAuthDocumentInput

DocAuthDocumentInput:
    | string
    | object
    | Blob
    | Response
    | Promise<
        | string
        | object
        | Blob
        | Response>

A string will be treated as a document authoring document in JSON format and loaded. An object will be treated as a JavaScript representation of a Document Authoring document (e.g. the result of JSON.parse on a Document Authoring JSON string).