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

    Type Alias TypeOnlyImportDeclaration

    TypeOnlyImportDeclaration:
        | tsc.ImportClause & { isTypeOnly: true; name: tsc.Identifier }
        | tsc.ImportEqualsDeclaration & { isTypeOnly: true }
        | tsc.NamespaceImport & { parent: tsc.ImportClause & { isTypeOnly: true } }
        | tsc.ImportSpecifier & (
            | { isTypeOnly: true }
            | {
                parent: tsc.NamedImports & {
                    parent: tsc.ImportClause & { isTypeOnly: true };
                };
            }
        )