private static isFhirOperationDefinition()

in src/implementationGuides/index.ts [95:104]


    private static isFhirOperationDefinition(x: any): x is FhirOperationDefinition {
        return (
            typeof x === 'object' &&
            x &&
            x.resourceType === 'OperationDefinition' &&
            typeof x.url === 'string' &&
            typeof x.name === 'string' &&
            typeof x.description === 'string'
        );
    }