storipress/karbon

View on GitHub
packages/karbon/src/cli/bundle/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface Tlayout {
  id: string
  name: string
  file: string
  path: string
}

export interface Tblock {
  id: string
  name: string
  file: string
  path: string
  ssr: boolean
}

export enum SummaryType {
  template = 'Template',
  block = 'Block',
}