5 lines
301 B
TypeScript
5 lines
301 B
TypeScript
import type { IConstruct } from 'constructs';
|
|
import type { BucketAttributes } from './bucket';
|
|
export declare function parseBucketArn(construct: IConstruct, props: BucketAttributes): string;
|
|
export declare function parseBucketName(construct: IConstruct, props: BucketAttributes): string | undefined;
|