AboutSupportDeveloper GuideVersion 33

Interface ContentCreationRule<T>

A rule for creating content in OpenFin; maps a content type to the way in which newly-opened content of that type will be handled.

Type Parameters

Hierarchy

  • ContentCreationRule

Properties

behavior: T

'view' | 'window' | 'browser' | 'block'

data?: unknown

custom property

match: string[]

List of match patterns.

options?: T extends "window"
    ? Partial<WindowOptions>
    : T extends "view"
        ? Partial<ViewOptions>
        : never

Window creation options or View creation options.