UNPKG

@featurevisor/core

Version:

Core package of Featurevisor for Node.js usage

11 lines (10 loc) 394 B
import type { DatafileContentV1, Feature, Segment, Attribute } from "@featurevisor/types"; import { ProjectConfig } from "../config"; export interface ConvertToV1Options { revision: string; projectConfig: ProjectConfig; attributes: Attribute[]; features: Feature[]; segments: Segment[]; } export declare function convertToV1(options: ConvertToV1Options): DatafileContentV1;