保存进度!

This commit is contained in:
2023-02-14 23:36:40 +08:00
parent 007953d129
commit 8315b1f9b2
11 changed files with 69 additions and 20 deletions

View File

@@ -32,7 +32,7 @@ module.exports = {
"plugin:@typescript-eslint/recommended",
],
rules: {
"no-console": "warn",
"no-console": "off",
"quote-props": ["warn", "as-needed",],
quotes: ["warn", "double", { allowTemplateLiterals: true, },],
indent: ["warn", 4,],

View File

@@ -70,4 +70,4 @@ function dataTypes()
}
export { dataTypes };
export default dataTypes;

View File

@@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2023-02-13 23:08:34
* @LastEditors: Kane
* @LastEditTime: 2023-02-13 23:56:11
* @LastEditTime: 2023-02-14 22:25:27
* @FilePath: /后端辅助工具/src/DataType/Function.ts
* @Description:
*
@@ -20,7 +20,7 @@ const func: {
version: string,
} = f;
function func_this(this: { name: string; }, x: number, y: number): void
function func_this_void( this:void, arg1:number ):number
{
return arg1;
}

View File

@@ -2,14 +2,14 @@
* @Author: Kane
* @Date: 2023-02-09 22:14:30
* @LastEditors: Kane
* @LastEditTime: 2023-02-14 00:09:39
* @LastEditTime: 2023-02-14 22:36:54
* @FilePath: /后端辅助工具/src/main.ts
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
import { dataTypes } from "./DataType/DataType";
import dataTypes from "./DataType/DataType";
import { pakoTest } from "./gzip/PakoTest";
const greetings = "hello, this is kane's typescript!";