intercom-client
Version:
Official Node bindings to the Intercom API
26 lines (25 loc) • 682 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* A spacer component is used to create empty space between components.
*/
export interface SpacerComponent {
/** A unique identifier for the component. */
id?: string;
/** The amount of space between components. Default is `s`. */
size?: SpacerComponent.Size;
}
export declare namespace SpacerComponent {
/**
* The amount of space between components. Default is `s`.
*/
type Size = "xs" | "s" | "m" | "l" | "xl";
const Size: {
readonly Xs: "xs";
readonly S: "s";
readonly M: "m";
readonly L: "l";
readonly Xl: "xl";
};
}