mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
8 lines
278 B
Rust
8 lines
278 B
Rust
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
use std::path::PathBuf;
|
|
|
|
deno_core::extension!(deno_console, esm = ["01_console.js"],);
|
|
|
|
pub fn get_declaration() -> PathBuf {
|
|
PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("lib.deno_console.d.ts")
|
|
}
|