@types/fontoxml
TypeScript icon, indicating that this package has built-in type declarations

0.0.34 • Public • Published

Installation

npm install --save @types/fontoxml

Summary

This package contains type definitions for fontoxml (http://www.fontoxml.com/).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fontoxml.

index.d.ts

declare namespace com.fontoxml {
    // This is a description of how to invoke the FontoXML editor, and instruct it to load (a) document(s).
    // Please keep in mind that the URL length may be limited in certain browsers, so a safe limit of 2000 characters
    // for the whole URL including query parameters should be used.
    export interface IInvocator {
        // The document id's of the documents to load from the CMS.
        documentIds: string[];
        // The base URL where the CMS endpoints are exposed.
        cmsBaseUrl: string;
        // The edit session token to use for accessing the CMS endpoints.
        editSessionToken: string;
        // User information.
        user?: IUserInfo | undefined;
        // Workflow information.
        workflow?: IWorkflowInfo | undefined;
        // Allow/disallow auto-save functionality.
        autosave?: boolean | undefined;
        // If set to a positive integer, enable the Heartbeat API to send every x seconds.
        heartbeat?: number | undefined;
    }

    export interface IWorkflowInfo {
        id: string;
        displayName: string;
    }

    export interface IUserInfo extends IWorkflowInfo {
        roleId: string;
    }

    // This is describes the object that is assigned to the MessageEvent.data
    // property after the FontoXML editor posts a message
    export interface IFontoMessageEventData {
        command: string;
        type: string;
        scope: com.fontoxml.IInvocator;
        metadata: any;
    }
}

Additional Details

  • Last updated: Tue, 30 Jan 2024 21:35:45 GMT
  • Dependencies: none

Credits

These definitions were written by Roland Zwaga.

Dependents (0)

Package Sidebar

Install

npm i @types/fontoxml

Weekly Downloads

15

Version

0.0.34

License

MIT

Unpacked Size

5.56 kB

Total Files

5

Last publish

Collaborators

  • types