xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

free online code editor

online vscode

https://stackblitz.com/

https://codesandbox.io/

https://codeshare.io/

https://playcode.io/

online vscode editor

Visual Studio Codespaces

https://online.visualstudio.com/

https://code.visualstudio.com/docs/remote/codespaces

OK

https://online.visualstudio.com/environment/5fbe727c-65e7-4401-8a37-50ecb2bc8d6f

TypeScript

interface IProps {
    firstName: string,
    lastName: string,
    age?: number;
    gender?: string,
}

// 泛型
class Human<T> {
    constructor(props) {
        // props
    }
}

// 类型“Human”不是泛型类型
class Person extends Human<IProps> {
    // [x: string]: any;
    firstName: any;
    lastName: any;
    constructor(props) {
        super(props);
        const {
            firstName,
            lastName,
        } = props;
        this.firstName = firstName;
        this.lastName = lastName;
    }
}

shit azure & credit card

code-server

https://github.com/cdr/code-server

https://areknawo.com/vs-code-goes-online/



Flag Counter

©xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


原文地址:https://www.cnblogs.com/xgqfrms/p/12899508.html