@servicenow/sdk - v4.4.1
    Preparing search index...

    Type Alias TypeOnlyExportDeclaration

    TypeOnlyExportDeclaration:
        | tsc.ExportSpecifier & (
            | { isTypeOnly: true }
            | {
                parent: tsc.NamedExports & {
                    parent: tsc.ExportDeclaration & { isTypeOnly: true };
                };
            }
        )
        | tsc.ExportDeclaration & {
            isTypeOnly: true;
            moduleSpecifier: tsc.Expression;
        }
        | tsc.NamespaceExport & {
            parent: tsc.ExportDeclaration & {
                isTypeOnly: true;
                moduleSpecifier: tsc.Expression;
            };
        }