Sha256: eb38b08350480b5617bf463639a4843364c84b5a8d17f959798efbada1850b33

Contents?: true

Size: 445 Bytes

Versions: 4

Compression:

Stored size: 445 Bytes

Contents

export interface Block {
  name: string;
  title: string;
  description?: string;
  optional: boolean;
  enforced: boolean;
  size: string;
  class?: string;
  localized?: boolean;
  placeholder?: string;
  options?: [string, string][];
  type?: string;
}

export interface Config {
  name: string;
  template_name: string;
  blocks: Block[];
  metadata_blocks: Block[];
  images: boolean;
  dates: boolean;
  tags: boolean;
  files: boolean;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pages_core-3.15.4 app/javascript/types/Template.ts
pages_core-3.15.3 app/javascript/types/Template.ts
pages_core-3.15.2 app/javascript/types/Template.ts
pages_core-3.15.1 app/javascript/types/Template.ts