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;
  })[];
  tags: (
     | string
     | {
     filter?: (item) => boolean;
     key: string;
  })[];
}> & Omit<object & VNodeProps & AllowedComponentProps & ComponentCustomProps, "allowHtml" | "header" | "tags" | "body" | "featured" | "footer">;