proposal-type-annotations
ECMAScript 타입 문법 제거(erased type syntax) 제안 - Stage 1
파일 탐색기
- Deploy.yml
- OFL.txt
- PTSans-Bold.ttf
- PTSans-BoldItalic.ttf
- PTSans-Italic.ttf
- PTSans-Regular.ttf
- OFL.txt
- PTSerif-Bold.ttf
- PTSerif-BoldItalic.ttf
- PTSerif-Italic.ttf
- PTSerif-Regular.ttf
- favicon.png
- og-image.png
- components.jsx
- grammar-input.html
- server.js
- shiki-theme.json
- site.jsx
- style.scss
- tsconfig.json
- .gitignore
- package-lock.json
- package.json
- README.md
- grammar-ideas.md
- grammar.md
- syntax-comparison.md
- CODEOWNERS
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
interface
설명 보기 ▼
interface
인터페이스를 관리.
설정 모드에서 사용함.
더 많은 정보: <https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/interface/command/ir-cr-book/ir-i1.html>.
interface vlan {{1}}
VLAN 인터페이스 설정:
{{no shutdown|shutdown}}
인터페이스 활성화 또는 비활성화 (interface 명령 내부에서 실행):
declare
설명 보기 ▼
declare
변수를 선언하고 속성을 부여.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-declare>.
declare {{variable}}="{{value}}"
지정된 값을 사용하여 문자열 변수를 선언:
declare -i {{variable}}="{{value}}"
지정된 값을 가진 정수 변수를 선언:
declare -a {{variable}}=({{item_a item_b item_c}})
지정된 값을 사용하여 배열 변수를 선언:
readonly
설명 보기 ▼
readonly
읽기 전용 셸 변수를 설정합니다.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-readonly>.
readonly {{variable_name}}={{value}}
읽기 전용 변수 설정:
readonly {{existing_variable}}
변수 읽기 전용으로 표시:
readonly -p
모든 읽기 전용 변수의 이름과 값을 `stdout`에 [p]rint:
strings
설명 보기 ▼
strings
객체 파일이나 바이너리에서 출력 가능한 문자열을 찾습니다.
더 많은 정보: <https://manned.org/strings>.
strings {{path/to/file}}
바이너리의 모든 문자열 출력:
strings {{[-n|--bytes]}} {{n}} {{path/to/file}}
결과를 최소 n 글자 이상의 문자열로 제한:
strings {{[-t|--radix]}} d {{path/to/file}}
각 결과 앞에 파일 내 오프셋 접두사 추가:
tsc
설명 보기 ▼
tsc
TypeScript 컴파일러.
더 많은 정보: <https://www.typescriptlang.org/docs/handbook/compiler-options.html>.
tsc --init
`foobar.ts` TypeScript 파일을 `foobar.js` JavaScript 파일로 컴파일:
tsc {{path/to/file.ts}}
특정 목표 구문을 사용하여 TypeScript 파일을 JavaScript로 컴파일 (기본값은 `ES3`):
tsc {{[-t|--target]}} {{ES5|ES2015|ES2016|ES2017|ES2018|ESNEXT|...}} {{path/to/file.ts}}
사용자 정의 이름으로 TypeScript 파일을 JavaScript 파일로 컴파일:
