/*! * Copyright (c) Microsoft. All rights reserved. */ /** * The data type that represents a record */ export declare type RecordData = { [key: string]: string | number; }; /** * The data type that represents a table */ export declare type TableData = RecordData[]; /** * The generic power apps data object that can be exchanged with a hosting application */ export declare type PowerAppsData = TableData; export declare enum DataType { Boolean = "b", Date = "d", DateTime = "D", Number = "n", String = "s" } export declare type PowerAppsSchema = { [columnName: string]: DataType | { type: DataType; invariantName?: string; }; };