mirror of
https://github.com/typst/typst
synced 2025-05-17 02:25:27 +08:00
40 lines
1.2 KiB
Rust
40 lines
1.2 KiB
Rust
//! Helpful imports for creating library functionality.
|
|
|
|
#[doc(no_inline)]
|
|
pub use std::fmt::{self, Debug, Formatter};
|
|
#[doc(no_inline)]
|
|
pub use std::num::NonZeroUsize;
|
|
|
|
#[doc(no_inline)]
|
|
pub use comemo::{Track, Tracked, TrackedMut};
|
|
#[doc(no_inline)]
|
|
pub use ecow::{eco_format, EcoString};
|
|
#[doc(no_inline)]
|
|
pub use typst::diag::{bail, error, At, SourceResult, StrResult};
|
|
#[doc(no_inline)]
|
|
pub use typst::doc::*;
|
|
#[doc(no_inline)]
|
|
pub use typst::eval::{
|
|
array, cast_from_value, cast_to_value, dict, format_str, func, Args, Array, Cast,
|
|
CastInfo, Dict, Func, Never, Str, Symbol, Value, Vm,
|
|
};
|
|
#[doc(no_inline)]
|
|
pub use typst::geom::*;
|
|
#[doc(no_inline)]
|
|
pub use typst::model::{
|
|
element, Behave, Behaviour, Construct, Content, ElemFunc, Element, Finalize, Fold,
|
|
Introspector, Label, Locatable, Location, MetaElem, Resolve, Selector, Set, Show,
|
|
StabilityProvider, StyleChain, StyleVec, Styles, Synthesize, Unlabellable, Vt,
|
|
};
|
|
#[doc(no_inline)]
|
|
pub use typst::syntax::{Span, Spanned};
|
|
#[doc(no_inline)]
|
|
pub use typst::util::NonZeroExt;
|
|
#[doc(no_inline)]
|
|
pub use typst::World;
|
|
|
|
#[doc(no_inline)]
|
|
pub use crate::layout::{Fragment, Layout, Regions};
|
|
#[doc(no_inline)]
|
|
pub use crate::shared::{ContentExt, StylesExt};
|