"Fossies" - the Fresh Open Source Software Archive
Member "jitsi-meet-7316/react/features/base/jwt/actionTypes.ts" (5 Jun 2023, 194 Bytes) of package /linux/misc/jitsi-meet-7316.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TypeScript source code syntax highlighting (style: standard) with prefixed line numbers and code folding option.
Alternatively you can here view or download the uninterpreted source code file.
1 /** 2 * The type of redux action which stores a specific JSON Web Token (JWT) into 3 * the redux store. 4 * 5 * { 6 * type: SET_JWT, 7 * jwt: string 8 * } 9 */ 10 export const SET_JWT ='SET_JWT';