@altostra/core
Version:
Core library for shared types and logic
7 lines (6 loc) • 393 B
TypeScript
import type { ConnectionBase } from "./Common";
export declare type PolicyAttachmentConnectionType = 'connection.access.policy-attachment';
export interface PolicyAttachmentConnection extends ConnectionBase {
type: PolicyAttachmentConnectionType;
}
export declare const isPolicyAttachmentConnection: import("@altostra/type-validations").ObjectOfTypeValidation<PolicyAttachmentConnection>;