Skip to content

@eodash/eodash / Configuration / TEodashStacInfo

Interface: TEodashStacInfo

Properties

name

ts
name: "EodashStacInfo";

properties?

ts
optional properties?: Partial<{
  allowHtml: boolean;
  body: (
     | string
     | {
     filter?: (item) => boolean;
     key: string;
  })[];
  featured: (
     | string
     | {
     filter?: (item) => boolean;
     key: string;
  })[];
  footer: (
     | string
     | {
     filter?: (item) => boolean;
     key: string;
  })[];
  header: (
     | string
     | {
     filter?: (item) => boolean;
     key: string;
  })[];
  level: "collection" | "item";
  styleOverride: string;
  tags: (
     | string
     | {
     filter?: (item) => boolean;
     key: string;
  })[];
}> & Omit<object & VNodeProps & AllowedComponentProps & ComponentCustomProps,
  | "styleOverride"
  | "level"
  | "allowHtml"
  | "header"
  | "tags"
  | "body"
  | "featured"
| "footer">;