HareScriptColumnFile | WebHare Platform SDK
WebHare Platform SDK
    Preparing search index...

    Type Alias HareScriptColumnFile

    HareScriptColumnFile describes the options supported by RunColumnFileExportDialog

    type HareScriptColumnFile = {
        columns?: {
            name: string;
            storeutc?: boolean;
            title: string;
            type:
                | "text"
                | "boolean"
                | "money"
                | "datetime"
                | "date"
                | "time"
                | "float"
                | "integer"
                | "integer64"
                | "timestamp"
                | "string";
        }[];
        compressionlevel?: number;
        exporttitle?: string;
        filename?: string;
        rows: unknown[];
        timezone?: string;
    }
    Index

    Properties

    columns?: {
        name: string;
        storeutc?: boolean;
        title: string;
        type:
            | "text"
            | "boolean"
            | "money"
            | "datetime"
            | "date"
            | "time"
            | "float"
            | "integer"
            | "integer64"
            | "timestamp"
            | "string";
    }[]
    compressionlevel?: number
    exporttitle?: string
    filename?: string
    rows: unknown[]
    timezone?: string