@altostra/core
Version:
Core library for shared types and logic
9 lines (8 loc) • 386 B
TypeScript
import type { ResourceBase } from "./Common";
export declare type NotificationTopicType = 'resource.notification-topic';
export interface NotificationTopic extends ResourceBase {
type: NotificationTopicType;
topicName?: string;
displayName?: string;
}
export declare const isNotificationTopic: import("@altostra/type-validations").ObjectOfTypeValidation<NotificationTopic>;