7 lines
85 B
TypeScript
7 lines
85 B
TypeScript
declare enum Adapter {
|
|
Static = "static",
|
|
Ssr = "ssr"
|
|
}
|
|
|
|
export { Adapter };
|