A customized checkbox with a standard layout (input nested inside label). Use scss variables to customize.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Controller, Post, HttpCode, HttpStatus, Body, UseGuards, CanActivate } from "@nestjs/common"; | |
import { Router as RpcEndpoint } from "@open-rpc/server-js"; | |
import type { JSONRPCRequest } from "@open-rpc/server-js/build/transports/server-transport"; | |
import type { OpenrpcDocument } from "@open-rpc/meta-schema"; | |
type Constructor = { new (...args: any[]): any }; | |
type Config = { openrpcDocument: object; version: string; basePath?: string; authGuard?: CanActivate }; | |
export function JsonRpcEndpoint({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conosle.log('hello npxgist!') |