mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-11 01:47:53 +08:00
1e337abcdf
Co-authored-by: Jeffrey Cafferata <jeffrey@jcid.nl> Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
28 lines
600 B
Go
28 lines
600 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
func generateDTSFile(funcs string) error {
|
|
names := []string{
|
|
"base-types",
|
|
"fetch",
|
|
"others",
|
|
}
|
|
|
|
combined := []string{
|
|
"// WARNING: These type definitions are experimental and subject to change in future releases.",
|
|
}
|
|
for _, name := range names {
|
|
content, err := os.ReadFile(join("types", "src", name+".d.ts"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
combined = append(combined, string(content))
|
|
}
|
|
combined = append(combined, funcs)
|
|
os.WriteFile(join("types", "dnscontrol.d.ts"), []byte(strings.Join(combined, "\n\n")), 0644)
|
|
return nil
|
|
}
|