Search code examples
typescriptdefinitelytypedkeycloak

Type Definition file for Keycloak.js


I'm using Keycloak auth mechanism for my angular/node/typescript application .I could not find a definitelyTyped d.ts file for Keycloak.js

Is there a typescript equivalent/work in progress for this JBOSS Keycloak.js adapter or do I have to write one ? any inputs/pointers would be much appreciated


Solution

  • A simple one keycloak.d.ts can be written with the contents:

    declare var keycloak:any;
    declare module "keycloak" {
        export = keycloak;
    }
    

    More : https://basarat.gitbooks.io/typescript/content/docs/types/migrating.html