UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

18 lines (17 loc) 380 B
import type { TokenIdentity } from "./identity"; import type { Provider } from "./util"; /** * @public * * An object representing temporary or permanent AWS token. * * @deprecated Use {@link TokenIdentity} */ export interface Token extends TokenIdentity { } /** * @public * * @deprecated Use {@link TokenIdentityProvider} */ export type TokenProvider = Provider<Token>;