Type Alias SpaceCreate

type SpaceCreate = {
    description?: string;
    name: string;
    type: "shared" | "managed" | "data";
}
Index

Properties

description?: string

The description of the space. Personal spaces do not have a description.

name: string
type: "shared" | "managed" | "data"