Home > vue-metamorph > VueProgram
VueProgram type 
ESTree Program type, with an additional property isScriptSetup that denotes whether the program represents the contents of a <script setup> block in a Vue SFC
Signature:
typescript
export type VueProgram = namedTypes.Program & {
    isScriptSetup: boolean;
};