wirejs-resources 0.1.37-table-resource → 0.1.38-table-resource
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -114,3 +114,9 @@ export interface AnyDistributedTable extends Resource {
|
|
|
114
114
|
get partitionKeyName(): string;
|
|
115
115
|
get sortKeyName(): string | undefined;
|
|
116
116
|
}
|
|
117
|
+
export type TableDefinition = {
|
|
118
|
+
absoluteId: string;
|
|
119
|
+
partitionKey: KeyFieldDefinition;
|
|
120
|
+
sortKey?: KeyFieldDefinition;
|
|
121
|
+
indexes?: Index<any>[];
|
|
122
|
+
};
|