Skip to content

Commit

Permalink
Move type to interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ayush987goyal committed Mar 27, 2020
1 parent 8f6ab4f commit 64c591e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,12 @@ export enum ReturnValues {
UPDATED_NEW = 'UPDATED_NEW'
}

export type AttributeValueMap = { [key: string]: AttributeValue };
/**
* Map of string to AttributeValue
*/
export interface AttributeValueMap {
[key: string]: AttributeValue;
}

/**
* Class to generate AttributeValue
Expand Down

0 comments on commit 64c591e

Please sign in to comment.