Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 983 Bytes

File metadata and controls

28 lines (21 loc) · 983 Bytes

HunkRep

Properties

Name Type Description Notes
startingLineNumber number Line number of beginning of code reference hunk [default to undefined]
lines string Contextual lines of code that include the referenced feature flag [optional] [default to undefined]
projKey string The project key [optional] [default to undefined]
flagKey string The feature flag key [optional] [default to undefined]
aliases Array<string> An array of flag key aliases [optional] [default to undefined]

Example

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

const instance: HunkRep = {
    startingLineNumber,
    lines,
    projKey,
    flagKey,
    aliases,
};

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