Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 783 Bytes

File metadata and controls

22 lines (15 loc) · 783 Bytes

Defaults

Properties

Name Type Description Notes
onVariation number The index, from the array of variations for this flag, of the variation to serve by default when targeting is on. [default to undefined]
offVariation number The index, from the array of variations for this flag, of the variation to serve by default when targeting is off. [default to undefined]

Example

import { Defaults } from 'launchdarkly-api-typescript';

const instance: Defaults = {
    onVariation,
    offVariation,
};

[Back to Model list] [Back to API list] [Back to README]