mirror of
https://github.com/foomo/sesamy-cli.git
synced 2025-10-16 12:35:36 +00:00
11 lines
222 B
Go
11 lines
222 B
Go
package config
|
|
|
|
import (
|
|
"github.com/foomo/gocontemplate/pkg/contemplate"
|
|
)
|
|
|
|
type TypeScript struct {
|
|
contemplate.Config `json:",inline" yaml:",squash"`
|
|
OutputPath string `json:"outputPath" yaml:"outputPath"`
|
|
}
|