Skip to content
View owitor's full-sized avatar

Block or report owitor

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. angular angular Public

    Forked from angular/angular

    The modern web developer’s platform

    TypeScript 1

  2. Typescript decorator to analyse erro... Typescript decorator to analyse errors (abstraction try catch)
    1
    type HandlerFunction = (error: Error, ctx: any) => void;
    2
    
                  
    3
    // Default handler function
    4
    const handlerDefault = (err: Error, ctx: any) => {
    5
      // Disable Errors in Production
  3. Typescript decorator to execute othe... Typescript decorator to execute other decorator in all methods or specific methods
    1
    import 'reflect-metadata';
    2
    
                  
    3
    export interface DecorateAllOptions {
    4
      deep?: boolean;
    5
      exclude?: string[];