UNPKG

@message-queue-toolkit/sns

Version:
6 lines (5 loc) 411 B
import type { CreateTopicCommandInput } from '@aws-sdk/client-sns'; import type { SNSTopicLocatorType } from '../sns/AbstractSnsService'; export type TopicResolutionOptions = CreateTopicCommandInput | SNSTopicLocatorType; export declare function isCreateTopicCommand(value: unknown): value is CreateTopicCommandInput; export declare function isSNSTopicLocatorType(value: unknown): value is SNSTopicLocatorType;