13 lines
365 B
TypeScript
13 lines
365 B
TypeScript
import type { Construct } from 'constructs';
|
|
import type * as lambda from '../../aws-lambda';
|
|
import type * as sns from '../../aws-sns';
|
|
import * as core from '../../core';
|
|
/**
|
|
* Collection of arbitrary properties
|
|
*
|
|
* @deprecated this type has been deprecated in favor of using a key-value type directly
|
|
*/
|
|
export type Properties = {
|
|
[key: string]: any;
|
|
};
|