Version: 0.4.00.5.00.5.10.5.20.6.00.6.10.7.00.8.00.8.10.8.20.8.30.9.00.10.00.10.10.10.20.10.3-alpha.340.10.3-alpha.350.10.3-alpha.410.10.3-canary.00.11.00.11.1-alpha.150.11.1-alpha.350.11.1-alpha.360.11.1-alpha.440.11.1-alpha.480.11.1-alpha.530.12.00.12.1-alpha.70.12.1-alpha.540.13.00.14.00.15.00.16.00.16.1-alpha.110.16.1-alpha.140.16.1-alpha.150.16.1-alpha.200.17.00.17.1-alpha.210.18.00.18.10.19.00.20.00.21.01.0.0-rc.01.0.0-rc.11.0.0-rc.21.0.0-rc.31.0.01.0.11.0.21.0.31.0.41.1.01.2.01.3.01.4.01.4.11.5.01.6.01.7.01.8.01.9.0
/**
* Attributes is a map from string to attribute values.
*
* Note: only the own enumerable keys are counted as valid attribute keys.
*/
export interface Attributes {
[attributeKey: string]: AttributeValue | undefined;
}
* Attribute values may be any non-nullish primitive value except an object.
* null or undefined attribute values are invalid and will result in undefined behavior.
export declare type AttributeValue = string | number | boolean | Array<null | undefined | string> | Array<null | undefined | number> | Array<null | undefined | boolean>;
//# sourceMappingURL=Attributes.d.ts.map