UNPKG

@atlaskit/renderer

Version:
7 lines (6 loc) 624 B
import type { RendererAppearance } from '../../ui/Renderer/types'; export declare const isFullWidthAppearance: (appearance: RendererAppearance) => appearance is "full-width"; export declare const isMaxWidthAppearance: (appearance: RendererAppearance) => appearance is "max"; export declare const isFullPageAppearance: (appearance: RendererAppearance) => appearance is "full-page"; export declare const isCommentAppearance: (appearance: RendererAppearance) => appearance is "comment"; export declare const isFullWidthOrFullPageAppearance: (appearance: RendererAppearance) => appearance is "full-width" | "full-page" | "max";